home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / TURBOPASCAL WIN / PAINT.PAK / RESDEF.PAS < prev    next >
Pascal/Delphi Source File  |  1992-06-08  |  1KB  |  35 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal for Windows: Paint Demo         }
  4. {   resdef unit                                  }
  5. {   Copyright (c) 1992 by Borland International  }
  6. {                                                }
  7. {************************************************}
  8.  
  9. unit ResDef;
  10.  
  11. { This unit supplies the constant definitions used in the paint program
  12.   to refer to resources not in the standardly defined.
  13.  
  14.   These declarations are separated from other paint declarations because
  15.   Resource Workshop can only parse a limited subset of Pascal.
  16. }
  17.  
  18. interface
  19.  
  20. const
  21.  
  22.   { Used by Bitmap Size dialog }
  23.   id_WidthField = 101;
  24.   id_HeightField = 102;
  25.   id_StretchBM = 104;
  26.   id_PadBM = 105;
  27.   id_CurrentBMGroup = 106;
  28.  
  29.   { Message numbers for menus }
  30.   cm_OptionsSize = 444;     { An arbitrarily chosen message number }
  31.   cm_HelpAbout = 333;        { Equally arbitrary }
  32.  
  33. implementation
  34.  
  35. end.